home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1996 June / What PC June 1996.iso / data / showcase / vrdemo.dir / 00004_Loop script.ls < prev    next >
Encoding:
Text File  |  1996-02-04  |  389 b   |  15 lines

  1. on enterFrame
  2. end
  3.  
  4. on exitFrame
  5.   go(the frame)
  6. end
  7.  
  8. on idle
  9.   global sliderLeft, sliderRight, sliderRange, sliderButtonSprite, videoSprite
  10.   set movieLength to the duration of cast the castNum of sprite videoSprite * 1.0
  11.   if movieLength > 0 then
  12.     set the locH of sprite sliderButtonSprite to (the movieTime of sprite videoSprite / movieLength * sliderRange) + sliderLeft
  13.   end if
  14. end
  15.